home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
accounts
/
zpack2.arj
/
GETDATA.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-04-25
|
811b
|
25 lines
ECHO OFF
REM clear the screen
CLS
REM display the information screen file
TYPE GETDATA.SCR
REM wait for you to respond
PAUSE
REM clear the screen, again
CLS
REM send the information contained in the autoexec.bat to the printer
REM *************** change the setting on the next line if it is incorrect.
COPY C:\AUTOEXEC.BAT LPT1
REM send the information contained in the config.sys to the printer
REM *************** change the setting on the next line if it is incorrect.
COPY C:\CONFIG.SYS LPT1
REM send the information from the "PATH" setting to the printer
PATH >LPT1
REM send the information from the CHKDSK.COM utility to the printer
REM *************** chkdsk.com must be located in the "path" for this to work.
CHKDSK >LPT1
REM clear the screen, one last time
CLS
REM all done!